home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Interactive CD Sampler / Microsoft Interactive CD Sampler.iso / DEMOS / C_Automp / AUTOTP / IMD.CST / 00013.ls < prev    next >
Encoding:
Text File  |  1996-07-16  |  452 b   |  17 lines

  1. on resetPuppet ID
  2.   -- Copyright 1995 Interactive Media Design, Inc.
  3.   -- unpuppets sprites identified in list spritePuppet1 or spritePuppet2.
  4.   -- ID is either 1 or 2. Default is spritePuppet1
  5.   global spritePuppet1, spritePuppet2
  6.   if voidP(ID) then
  7.     set ID = 1
  8.   end if
  9.   repeat with x in value("spritePuppet" & ID)
  10.     puppetSprite x, FALSE
  11.   end repeat
  12.   if ID = 1 then
  13.     set spritePuppet1 = []
  14.   else
  15.     set spritePuppet2 = []
  16.   end if
  17. end